home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / source / misc / xform-table < prev    next >
Encoding:
Text File  |  1994-02-02  |  197 b   |  7 lines  |  [TEXT/R*ch]

  1. #!/bin/sh
  2.  
  3. # Edit a "word-to-table" skeleton to make a sed script that will
  4. # translate words into table forms when applied to a file.
  5.  
  6. sed -e "s/WORD/$1/g" < word2table.in | sed -e "s/TABLE/$2/g"
  7.